home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / JFC.bin / MetalInternalFrameUI.java < prev    next >
Text File  |  1998-06-30  |  5KB  |  154 lines

  1. /*
  2.  * @(#)MetalInternalFrameUI.java    1.10 98/02/13
  3.  * 
  4.  * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  * 
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  * 
  19.  */
  20.  
  21. package com.sun.java.swing.plaf.metal;
  22.  
  23. import java.awt.*;
  24. import java.awt.event.*;
  25. import com.sun.java.swing.*;
  26. import com.sun.java.swing.border.*;
  27. import com.sun.java.swing.plaf.basic.*;
  28. import java.util.EventListener;
  29. import java.beans.PropertyChangeListener;
  30. import java.beans.PropertyChangeEvent;
  31. import java.beans.PropertyVetoException;
  32. import com.sun.java.swing.plaf.*;
  33. import java.io.Serializable;
  34.  
  35. /**
  36.  * Metal implementation of JInternalFrame.  
  37.  * <p>
  38.  * Warning: serialized objects of this class will not be compatible with
  39.  * future swing releases.  The current serialization support is appropriate
  40.  * for short term storage or RMI between Swing1.0 applications.  It will
  41.  * not be possible to load serialized Swing1.0 objects with future releases
  42.  * of Swing.  The JDK1.2 release of Swing will be the compatibility
  43.  * baseline for the serialized form of Swing objects.
  44.  *
  45.  * @version 1.10 02/13/98
  46.  * @author Steve Wilson
  47.  */
  48. public class MetalInternalFrameUI extends BasicInternalFrameUI {
  49.  
  50.   private MetalInternalFrameTitlePane titlePane;
  51.  
  52.   private PropertyChangeListener paletteListener;
  53.   private PropertyChangeListener contentPaneListener;
  54.  
  55.   private static final Border handyEmptyBorder = new EmptyBorder(0,0,0,0);
  56.   
  57.   protected static String IS_PALETTE = "JInternalFrame.isPalette";
  58.  
  59.   public MetalInternalFrameUI(JInternalFrame b)   {
  60.     super(b);
  61.   }
  62.  
  63.   public static ComponentUI createUI(JComponent c)    {
  64.       return new MetalInternalFrameUI( (JInternalFrame) c);
  65.   }
  66.  
  67.   public void installUI(JComponent c) { 
  68.     frame = (JInternalFrame)c;
  69.  
  70.     paletteListener = new PaletteListener();
  71.     contentPaneListener = new ContentPaneListener();
  72.     c.addPropertyChangeListener(paletteListener);
  73.     c.addPropertyChangeListener(contentPaneListener);
  74.  
  75.     super.installUI(c);
  76.  
  77.     Object paletteProp = c.getClientProperty( IS_PALETTE );
  78.     if ( paletteProp != null ) {
  79.     setPalette( ((Boolean)paletteProp).booleanValue() );
  80.     }
  81.  
  82.     Container content = frame.getContentPane();
  83.     stripContentBorder(content);    
  84.     c.setOpaque(false);
  85.   }
  86.  
  87.   
  88.   public void uninstallUI(JComponent c) {                  
  89.       c.removePropertyChangeListener(paletteListener);
  90.       c.removePropertyChangeListener(contentPaneListener);
  91.  
  92.       Container cont = ((JInternalFrame)(c)).getContentPane();
  93.       if (cont instanceof JComponent) {
  94.     JComponent content = (JComponent)cont;
  95.     if ( content.getBorder() == handyEmptyBorder) {
  96.       content.setBorder(null);
  97.     }
  98.       }
  99.       super.uninstallUI(c);
  100.   } 
  101.  
  102.   private void stripContentBorder(Object c) {
  103.         if ( c instanceof JComponent ) {
  104.             JComponent contentComp = (JComponent)c;
  105.             Border contentBorder = contentComp.getBorder();
  106.            if (contentBorder == null || contentBorder instanceof UIResource) {
  107.             contentComp.setBorder( handyEmptyBorder );
  108.             }
  109.         }
  110.   }
  111.  
  112.     
  113.   protected JComponent createNorthPane(JInternalFrame w) {
  114.     titlePane = new MetalInternalFrameTitlePane(w);
  115.     return titlePane;
  116.   }
  117.  
  118.   public void setPalette(boolean isPalette) {
  119.     if (isPalette) {
  120.         LookAndFeel.installBorder(frame, "InternalFrame.paletteBorder");
  121.     } else {
  122.         LookAndFeel.installBorder(frame, "InternalFrame.border");
  123.     }
  124.     titlePane.setPalette(isPalette);
  125.  
  126.   }
  127.  
  128.   class PaletteListener implements PropertyChangeListener, Serializable {
  129.     public void propertyChange(PropertyChangeEvent e) {
  130.     String name = e.getPropertyName();
  131.     if ( name.equals( IS_PALETTE ) ) {
  132.         if ( e.getNewValue() != null ) {
  133.             setPalette( ((Boolean)e.getNewValue()).booleanValue() );
  134.         }
  135.         else {
  136.         setPalette( false );
  137.         }
  138.         }
  139.     }
  140.   } // end class PaletteListener
  141.  
  142.   class ContentPaneListener implements PropertyChangeListener, Serializable {
  143.     public void propertyChange(PropertyChangeEvent e) {
  144.     String name = e.getPropertyName();
  145.     if ( name.equals( JInternalFrame.CONTENT_PANE_PROPERTY ) ) {
  146.         stripContentBorder(e.getNewValue());
  147.         }
  148.     }
  149.   } // end class ContentPaneListener
  150.  
  151.  
  152. }
  153.  
  154.